/* Réinitialisation */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  padding-top: 90px;
}

/* Barre de navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 1000;
}

.navbar .logo {
  flex-shrink: 0;
}

.navbar .logo img {
  height: 80px;
  width: auto;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: color 0.3s ease;
}

.navbar a:visited {
  color: white;
}

.navbar a:hover {
  color: #e60000;
}

.navbar a.active {
  border-bottom: 2px solid #e60000;
}

.navbar .promo {
  color: #e60000;
}

/* Section Stage Junior Niveau 2 */
.stage-card {
  background-color: #1a1a1a;
  border: 2px solid #e60000;
  border-radius: 8px;
  padding: 30px;
  max-width: 750px;
  margin: 40px auto;
  text-align: center; /* ✅ Centre tout sauf les listes */
  line-height: 1.6;
  font-size: 1.1rem;
}

.stage-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
}

.stage-card h3 {
  color: #e60000;
  font-size: 2rem;
  margin-bottom: 20px;
}

.stage-card p {
  margin: 15px 0;
}

/* ✅ Conserve les puces mais centre le bloc */
.stage-card ul.objectifs-list {
  display: inline-block;      /* ✅ Permet de centrer un bloc avec du texte à gauche */
  text-align: left;           /* ✅ Aligne le texte à gauche à l’intérieur */
  margin: 10px 0 20px;
  padding-left: 20px;
}

.stage-card ul.objectifs-list li {
  margin-bottom: 8px;
  list-style-type: disc;
}

/* Bouton */
.button-red {
  display: inline-block;
  background-color: #e60000;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.button-red:hover {
  background-color: #b30000;
}
